home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / comm / term / teleterm22.lha / TeleTerm / Install-TeleTerm next >
Text File  |  1994-07-15  |  812b  |  50 lines

  1. (set @app-name "TeleTerm V1.0")
  2.  
  3. (set d
  4.  (askdir 
  5.   (default "SYS:") 
  6.   (help "The destination you select will be the location of TeleTerm.") 
  7.   (prompt "Select destination where TeleTerm will be copied."
  8.    "  Destination must have 300k of free disk space."
  9.   )
  10.   (disk)
  11.  )
  12. )
  13.  
  14. (set @default-dest d)
  15.  
  16. (copyfiles
  17.  (prompt "Copying files...") 
  18.  (choices
  19.   "TeleTerm"
  20.   "TeleTerm.info"
  21.  )
  22.  (source "")
  23.  (dest
  24.   (cat d)
  25.  )
  26. )
  27.  
  28. (copylib
  29.  (dest "LIBS:") 
  30.  (prompt "Copying XprZmodem.library...") 
  31.  (help @copylib-help) 
  32.  (source "libs/xprzmodem.library")
  33. )
  34.  
  35. (copylib
  36.  (dest "LIBS:") 
  37.  (prompt "Copying XemAmiga.library...") 
  38.  (help @copylib-help) 
  39.  (source "libs/xemamiga.library")
  40. )
  41.  
  42. (copylib
  43.  (dest "LIBS:") 
  44.  (prompt "Copying Reqtools.library...") 
  45.  (help @copylib-help) 
  46.  (source "libs/reqtools.library")
  47. )
  48.  
  49. (exit)
  50.